From 33d6ce3324ce481411c3b66cf37b931e4daa3d8c Mon Sep 17 00:00:00 2001 From: Jeremy Bryant Date: Fri, 8 Mar 2024 23:25:59 +0000 Subject: [PATCH] Don't quote t * which-key.el (which-key--replace-in-repl-list-many): Don't quote t. --- which-key.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/which-key.el b/which-key.el index 4a0b8b8e045..a4aec2476d3 100644 --- a/which-key.el +++ b/which-key.el @@ -1588,7 +1588,7 @@ Within these categories order using `which-key-key-order'." (let (found) (dolist (repl repls) (when (which-key--match-replacement key-binding repl) - (setq found 't) + (setq found t) (setq key-binding (which-key--replace-in-binding key-binding repl)))) (when found `(replaced . ,key-binding)))) -- 2.30.2